Toggle navigation
Sign In
Toggle navigation
Categories
Discussions
Activity
Best Of...
Discussion
Sponsor Logos
Author
Date within
1 day
3 days
1 week
2 weeks
1 month
2 months
6 months
1 year
of
Examples: Monday, today, last week, Mar 26, 3/26/04
Search
Home
›
SmugMug Customization
Sponsor Logos
wpacker1
Registered Users
Posts:
34
Big grins
November 10, 2014
edited November 10, 2014
in
SmugMug Customization
Hello all, I'm wondering if anyone would be able to tell how to put sponsor logos on my site ? I'm not good with code so any help would be appreciated.
0
Comments
Hikin' Mike
Registered Users
Posts:
5,490
Major grins
November 10, 2014
edited November 10, 2014
Do you want the logos to be clickable?
- Mike
Images in the Backcountry
My SmugMug Customizations
|
Adding CSS to Your Site
|
SEO for the Photographer
|
Locate Your Page/Widget Number
|
SmugMug Help Desk
0
Hikin' Mike
Registered Users
Posts:
5,490
Major grins
November 10, 2014
edited November 10, 2014
A bit crude, but it should get you in the ball park.
Add a HTML/CSS block and add this in the HTML section:
[html]
<div class="sponsor-logos">
<div class="sponsor-logo logo-1"><a href="/url-here/"><img src="/url-of-logo-here.jpg" alt="logo text here" /></a></div>
<div class="sponsor-logo logo-2"><a href="/url-here/"><img src="/url-of-logo-here.jpg" alt="logo text here" /></a></div>
<div class="sponsor-logo logo-3"><a href="/url-here/"><img src="/url-of-logo-here.jpg" alt="logo text here" /></a></div>
<div class="sponsor-logo logo-4"><a href="/url-here/"><img src="/url-of-logo-here.jpg" alt="logo text here" /></a></div>
</div>
[/html]
Add this to your CSS:
.sponsor-logos { width: 100%; } .sponsor-logo { float: left; margin: 0 10px; }
It should give you 4 logos spaced 20px apart, horizontally.
- Mike
Images in the Backcountry
My SmugMug Customizations
|
Adding CSS to Your Site
|
SEO for the Photographer
|
Locate Your Page/Widget Number
|
SmugMug Help Desk
0
Sign In
or
Register
to comment.
Comments
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
Add a HTML/CSS block and add this in the HTML section:
[html]
<div class="sponsor-logos">
<div class="sponsor-logo logo-1"><a href="/url-here/"><img src="/url-of-logo-here.jpg" alt="logo text here" /></a></div>
<div class="sponsor-logo logo-2"><a href="/url-here/"><img src="/url-of-logo-here.jpg" alt="logo text here" /></a></div>
<div class="sponsor-logo logo-3"><a href="/url-here/"><img src="/url-of-logo-here.jpg" alt="logo text here" /></a></div>
<div class="sponsor-logo logo-4"><a href="/url-here/"><img src="/url-of-logo-here.jpg" alt="logo text here" /></a></div>
</div>
[/html]
Add this to your CSS:
It should give you 4 logos spaced 20px apart, horizontally.
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk